I’ve just noticed when I run it in ie7 I get an error saying Line: 403 ‘id is null or not an object’.
Any idea what would cause this?
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
March 28, 2008 10:13am
Subscribe [82]#166 / Apr 11, 2008 11:44am
I’ve just noticed when I run it in ie7 I get an error saying Line: 403 ‘id is null or not an object’.
Any idea what would cause this?
#167 / Apr 11, 2008 9:04pm
I’ve just noticed when I run it in ie7 I get an error saying Line: 403 ‘id is null or not an object’.
Any idea what would cause this?
Hi Synergiq
It doesn’t happen in my examples. This could be unique to your implementation. Publish the public url here, so we can check what part of your script is causing the problem.
#168 / Apr 12, 2008 4:30am
Hi Paulo
When new next realese ??
David O.
#169 / Apr 13, 2008 9:03pm
Hi Paulo
When new next realese ??
David O.
Hi David,
Ok i’m putting a nail on my schedule to make it stick 😊.
I’m planning to make a new release on the 28th of April.
I’m still addressing some of the concerns and request that I was made aware of. So if anyone has any last minute request, let me know.
Paulo
#170 / Apr 14, 2008 5:42am
I’ve created a copy of what I’m working on: http://synergiq.co.uk/test/flexigrid/ You can see the error in IE7.
I’ve also noticed the add and delete button images dont show up, I’m not sure if this is related?
#171 / Apr 15, 2008 8:24am
Hi Paulo
When new next realese ??
David O.Hi David,
Ok i’m putting a nail on my schedule to make it stick 😊.
I’m planning to make a new release on the 28th of April.
I’m still addressing some of the concerns and request that I was made aware of. So if anyone has any last minute request, let me know.
Paulo
So if anyone has any last minute request, let me know. >>>>
how about something like this??
http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/
(I’ve tried to get it running, but no success….. 😖 )
#172 / Apr 15, 2008 10:10am
Hi Paulo
When new next realese ??
David O.Hi David,
Ok i’m putting a nail on my schedule to make it stick 😊.
I’m planning to make a new release on the 28th of April.
I’m still addressing some of the concerns and request that I was made aware of. So if anyone has any last minute request, let me know.
Paulo
1.Maybe you succeeded in createing a new method for adding a new row ?
2.Did you succeed in adding an Editable rows features ?
Pls let me know.
#173 / Apr 15, 2008 7:45pm
Ok i’m putting a nail on my schedule to make it stick 😊.
I’m planning to make a new release on the 28th of April.
I’m still addressing some of the concerns and request that I was made aware of. So if anyone has any last minute request, let me know.
Paulo
Would it be possible to create “locked columns”? i.e. columns on the left that do not scroll as you scroll the rest of the dataset horizontally.
That would be awesome! Not that your grid isn’t already awesome. It is!
#174 / Apr 16, 2008 11:25am
Nice, very nice. Thx my friend…!!
i used this query for my applications it’s works good…
I’ve just noticed when I run it in ie7
server 2003:
I get an error saying Line: 402 ‘id is null or not an object’.
xp:
I get an error saying Line: 403 ‘id is null or not an object’.
here is the link
http://synergiq.co.uk/test/flexigrid/
plz help me my friend… ASAP…
#175 / Apr 16, 2008 1:19pm
Hi people,
i have a simple question actually. I want to swap some columns not with drag and drop but with a script function.
Can i access the method switchCol(x,y) in the flexigrid with javascript ?
like this one?
$.fn.switchX = function(p,p1){ //create a new method to access switchCol
alert(p+" p1);
return this.switchCol(p,p1);
}and then with a href i would like to operate the switchX(x,y) method.
like this:
thanks a lot!
#176 / Apr 16, 2008 3:15pm
Thanks! Flexigrid is great. I have been working with it for a while now. I added buttons across the top for each letter of the alphabet to allow users to quickly jump to that record set. Works well except for one issue I am working with…
it holds the page number when you click a new letter. So, if you were on page 3 of the records that start with “S” and then click the “A” record set, it starts on page 3 of the “A” set. Get it? I wish I could just show you but currently all the code is behind the firewall. Soon tho.
Any ideas on how to reset that page when I click a new letter sorting option?
Thanks again for the great code!
#177 / Apr 16, 2008 5:29pm
flexigrid was featured in smashingmagazine.com ...congrats 😊
#178 / Apr 16, 2008 7:14pm
Nice, very nice. Thx my friend…!!
i used this query for my applications it’s works good…
I’ve just noticed when I run it in ie7
server 2003:
I get an error saying Line: 402 ‘id is null or not an object’.xp:
I get an error saying Line: 403 ‘id is null or not an object’.here is the link
http://synergiq.co.uk/test/flexigrid/plz help me my friend… ASAP…
Hi Balaji,
Here is your problem at the last part of asp file that generates the JSON FILE
{id:'245', cell:['245', 'collin','sharples','green','200','sleepy','70','female','76 water terrace','15 rue des begognas','76 water terrace','45 rue de la liberte','london bridge (right under it)','Australia','Bourgogne','1']},
]}as you can see there is a comma after “‘Bourgogne’,‘1’]}” what happens is that IE is expecting another array object, but the truth is there isn’t anymore. Firefox tries to fix this automatically, but IE requires you to fix it and follow proper array format.
#179 / Apr 16, 2008 7:15pm
flexigrid was featured in smashingmagazine.com ...congrats 😊
Thanks 😊
#180 / Apr 16, 2008 7:18pm
Thanks! Flexigrid is great. I have been working with it for a while now. I added buttons across the top for each letter of the alphabet to allow users to quickly jump to that record set. Works well except for one issue I am working with…
it holds the page number when you click a new letter. So, if you were on page 3 of the records that start with “S” and then click the “A” record set, it starts on page 3 of the “A” set. Get it? I wish I could just show you but currently all the code is behind the firewall. Soon tho.
Any ideas on how to reset that page when I click a new letter sorting option?
Thanks again for the great code!
Hi dah,
Yes you just set the new page in the parameters before reloading flexigrid like so:
$('#flex1').flexOptions({newp:1});Have fun.