vote up 2 vote down star
2

I am wanting to use the Facebox plugin for JQuery but am having a few issues getting it running how I want. The div that houses the facebox content is created outside of the tag so even though I am loading up some web controls none of them are firing back to the server.

Has anyone dealt with this that can give me some pointers?

flag
Sure, here you go! *anObject *anotherObject Sorry, I know that was really lame, but some jokes have to be made nonetheless. – Matt Boehm Jun 18 at 13:00

7 Answers

vote up 3 vote down check

poking around the facebox.js I came across this line in the function init(settings)...

$('body').append($.facebox.settings.faceboxHtml)

I changed that to ...

$('#aspnetForm').append($.facebox.settings.faceboxHtml)

and it loads up in the form tag, not sure yet if there are any side effects

link|flag
vote up 0 vote down

Great stuff!! Have you had any problems with this? I encountered the same problem within a day of you :)

http://groups.google.com/group/facebox/browse_thread/thread/3190f9385c2e03e4

link|flag
vote up 1 vote down

You can use this code to register the PostBack event:

btn.OnClientClick = string.Format("{0}; $.facebox.close();",ClientScript.GetPostBackEventReference(btn, null));

this will let the button fires a PostBack.

link|flag
vote up 0 vote down

Hi i am working on a social network site. I am using facebox in my application for writing comments. Funcationality is working well on button's click event but after completing the functionality facebox is redirecting to their original form. Any help.....

link|flag
vote up 0 vote down

facebox problem with checkbox changed event and also with post back with in ajax control. Any help....

link|flag
vote up 0 vote down

Well, i wanted to comment on your answer, but i'm one point shy of being able to comment.

I am using facebox to show an edit dialog from a RadGrid, containing some RadComboBoxes, all of which are ajaxified. But on posting back, the combobox values were not being transmitted to the server.

Your fix of changing the facebox script to use #aspnetForm instead of body worked PERFECTLY!

Thanks for the answer! CheerZ!

link|flag
vote up 0 vote down

Hi. I am new to codeigniter. I developed one application with codeigniter and facebox. In the home page when I click the login, the the facebox will open the login view. Its everything working well on my laptop. When I insatall and try with my new physiacal server (windows 2008). The login view not loading into the facebox. The facebox gif files only loading. I just want to load the login view into the facebox. I have faced the same issue od windows server 2003 also. Can anyone please help me on this issue. Thanks

//mycode: //controller:

function Authenticate() { parent::Controller(); } function index() {

} function loginview() { $this->load->view(‘mapp_login’); } function login() { $data = array(); $data[‘user’] = $this->input->post(‘user’); $data[‘password’] = $this->input->post(‘password’); if ($data[‘user’]) { $secure = $this->session->login($data[‘user’],$data[‘password’]); if ($secure) { redirect(’/mapp/’); } else { show_error(‘Bad User Name or Password’); } } else { redirect(’/mapp/’); } } function logout(){ $this->session->logout(); redirect(’/mapp/’); } } /* End of file authenticate.php / / Location: ./system/application/controllers/authenticate.php */

//——————————————————- //view mapp_login

Login System

Login here if you’re a student or teacher

    <label>User Name
    <span class=“small”>Your NRIC Number</span>
    </label>
    <input type=“text” name=“user” id=“user” />
    <label>Password
    <span class=“small”>Your Date of Birth

(e.g. DDMMYY)

    <button type=“submit” id=“login_btn”>Login</button>
    <div class=“spacer”></div>
  <?php echo form_close(); ?>

// home page

MAPP config->item(‘base_url’) ?>www/” > [removed][removed]

images/banner.jpg
    <div>
      <ul class=“TopNav”>
          <li class=“Left”></li>
          <li id=“LinkHome”><?php echo anchor(‘mapp/’,’<span>Home</span>’);?></li>
          <li class=“Line”></li>
          <li id=“LinkLogin”><span>Login</span></li>
          <li class=“Right”></li>
      </ul>
    </div>
    <div class=“Reset”></div>
  </div>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.