Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - amberfan

Pages: [1]
1
Hi,
I want to show my data from remote but I don't want any paging.
I tried to do it but failed.
Could you please show me an example?
Thank you!

2
HI Jr. Member
I really appreciate your help. I solved the problem now.
I read your code carefully and  and finally found  the key point,
That is:
you use the class selector
<input type='checkbox' class='header_chk' onclick='SelectAll(this);'   />"
 $("input.header_chk").prop("checked", true);
------------------------------------------------------------------------------------------------
And I use the ID selector
<input type='checkbox' id='chkall' onclick='checkAll(event,this)'/>
 $("#chkall").prop("checked", true);

your code takes effect and mine doesn't work.......

3
Well, in my project, it looks like below:
I select All in first page:

and then i go to the next page


you can see that the checkbox in the heading remains checked.  I want to get it unchecked when the table  is refreshed ,but I can't control it.....

4
Please see my demo below:
http://jsfiddle.net/LAgZx/178/

I put a check box in a column heading, and  I want to control the checkbox by clicking a button.
that is: when I click the button, the checkbox gets checked or unchecked.

but it doesn't work.

.......

I will use the check box to "select All" and "unselect All" the checkboxes in that column, but when I click to next page, the checkbox in the title remains checked, I'm really confused....

5
Help for ParamQuery Grid (free version) / Re: A bug in Chrome
« on: October 09, 2013, 09:00:48 am »
well, I cant't find the matter now. Is something wrong with my code ?

6
Help for ParamQuery Grid (free version) / A bug in Chrome
« on: October 08, 2013, 03:26:50 pm »
HI,
I find a bug in Google Chrome.
When a picture is inserted into a cell,  and you scroll the ball of the mouse, you will find the whole table  twists.
Please check with the demo "Internationalization and Localization" in chrome".

Pages: [1]