--
You received this message because you are subscribed to the Google Groups "Flexigrid for jQuery" group.
To post to this group, send email to flex...@googlegroups.com.
To unsubscribe from this group, send email to flexigrid+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flexigrid?hl=en.
Try jqGrid at http://www.trirand.com/blog/,
Flexigrid is out of date, the plugin has discontinued in version 1.2.6
2010/1/16 misterakko <lu...@accomazzi.it>
Yesterday JQuery 1.4 was released. I lazily tried it and I see it
breaks Flexigrid. As I'm heavily invested in Flsxigrid but a mediocre
JS programmer (I mostly work server-side, I have added facilities to
save user preferences via PHP+MySQLin my CMS), I'm a bit disapointed
but at a loss. Has anyone else made this experiment? Thoughts?
--
You received this message because you are subscribed to the Google Groups "Flexigrid for jQuery" group.
To post to this group, send email to flex...@googlegroups.com.
To unsubscribe from this group, send email to flexigrid+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flexigrid?hl=en.
--
Sabino, Regis S.
Programmer - Web Designer - Full .NET Platform
(55) 11 8545-9314 / (55) 11 2456-7901
--
You received this message because you are subscribed to the Google Groups "Flexigrid for jQuery" group.
To post to this group, send email to flex...@googlegroups.com.
To unsubscribe from this group, send email to flexigrid+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flexigrid?hl=en.
Are you sure? I have tried too and - while I still have to do some
more testing - it appears to be working just fine.
What exactly breaks in your case?
On Jan 16, 12:48 pm, Regis Sabino <regis.sab...@gmail.com> wrote:
> Try jqGrid
Thank you very much for trying to sell us a just-out-of-beta
commercial software, which nobody here was asking about. Also, please
notice that Flaxigrid works beautifully under jQuery 1.3.2 in my CMS.
Personally, I also need the possibility to add/remove columns (not
just rows) from the UI, and your script doesn't do that.
So, back to Flexigrid. @lck: what I see is an obscure Json error from
the PHP being called via Ajax. I'll look into it in more depth.
Sent from my Verizon Wireless BlackBerry
I can't see what or why...JSON is passed regularly and i don't see any
errors in the console...
I just know i don't want to switch to jqGrid...but i really need to
have some work done in 5 days.
Lck...are you 100% sure it works for you?
ok, i've to come back into the discussion....
It's true...it breaks.
I can't see what or why...JSON is passed regularly and i don't see any
errors in the console...
I just know i don't want to switch to jqGrid...but i really need to
have some work done in 5 days.
Lck...are you 100% sure it works for you?
On Jan 16, 3:38пїЅpm, Lck wrote:
> On Jan 16, 12:23пїЅpm, misterakko wrote:
>
> > Yesterday JQuery 1.4 was released. I lazily tried it and I see it
> > breaks Flexigrid.
>
> Are you sure? I have tried too and - while I still have to do some
> more testing - it appears to be working just fine.
> What exactly breaks in your case?
--
You received this message because you are subscribed to the Google Groups "Flexigrid for jQuery" group.
To post to this group, send email to flex...@googlegroups.com.
To unsubscribe from this group, send email to flexigrid+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flexigrid?hl=en.
http://flexigrid.info/sample2.php
The problem was that jQuery 1.4 now requires a strict JSON format. I
use json_encode to generate a strict JSON format before sending the
data back to flexigrid like so:
$data['page'] = $page;
$data['total'] = $total;
while ($row = mysql_fetch_array($result)) {
$rows[] = array(
"id" => $row['iso'],
"cell" => array(
$row['iso']
,$row['name']
,$row['printable_name']
,$row['iso3']
,$row['numcode']
)
);
}
$data['rows'] = $rows;
$data['params'] = $_POST;
echo json_encode($data);
*** G R E A T ***
It's also a bit faster! Thank you Paulo.
L.
do have add/edit code in flexigrid
if yes let me know.
i am a fresher in php,mysql,ajax,jquery.
thanks
--
You received this message because you are subscribed to the Google Groups "Flexigrid for jQuery" group.
To post to this group, send email to flex...@googlegroups.com.
To unsubscribe from this group, send email to flexigrid+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flexigrid?hl=en.