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 - jeetmarwah

Pages: [1]
1
Anyone who can help me with this issue???

2
Also, you mentioned that this issue was answered before in the forum. I have looked a lot and could not find it. Can you please paste the url for that post that has the solution?

Thanks.

3
As per your suggestion, I implemented the api and I think I am making a mistake somewhere as I get this error.


Code: [Select]
Uncaught Error: cannot call methods on pqGrid prior to initialization; attempted to call method 'refresh'

Here is the snippet of my code:

Code: [Select]
$(document).ready(function() {

$("#tabs").tabs({
activate: function(event, ui) {
alert("Activate event fired for #tabs");
debugger;
$( "#tabs" ).pqGrid( "refresh" );
}
});

$("#tabs").on("tabsactivate", function(event, ui) {
$( "#tabs" ).pqGrid( "refresh" );
});
});



Please suggest.
Thanks.

4
Hi,

I am very new to Javascript and JQuery. So please excuse me if my UI design is very primitive. It will be great if someone can suggest and help me learn this JS skill.

Here is my challenge.
I have 3 tabs and I want to have grid on each one. But the data on Grid 2 does not show data after you click away from it.

Steps:
-----------
load the html page
click on Grid 2
Click on Grid 1 --> you will still see the data
Click on Grid 2 again --> Grid shows with no data.

I was not able to upload the example here due to size restrictions of 192kb. Please download and unzip the example using this URL.

https://drive.google.com/file/d/0B2DirYn9ksAfeTN5YU44RGxWVTg/view?usp=sharing

Unzip and double click on the husky.html

Please feel free to ask any questions and give your valuable suggestions/feedback/ideas.

Thanks.




Pages: [1]