Instead of doing the following
var url = args.get_item().get_cell("URL").getElementsByTagName('a')[0];
Is there a way to use jQuery to find objects after a call to get_cell? Ive got a rather complicated template and I'd like to use jQuery instead of going through a tag array...
Thanks,
Steve
1 Answer, 1 is accepted
0
Veli
Telerik team
answered on 21 Apr 2010, 02:35 PM
Hi Steve,
Of course, here is a sample:
varurlCell = args.get_item().get_cell("URL");
var$links = $("a", urlCell);
Sincerely yours,
Veli
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.