Tagged Questions
0
votes
0answers
66 views
Binary encode values of different sizes in JavaScript
I'm trying to binary encode some geometric shapes: a point, a circle and a rectangular.
My idea is to encode them using ArrayBuffers where each item is encoded as
1 byte for the type and more 2-byte ...
1
vote
1answer
669 views
How can i handle mouseclicks of items inside a dataview
each item in my dataview has a text and a div which represents a button. The button is only shown when the mouse is over the item. How can i handle a mouseclick on the button-div?
What i have so far ...
0
votes
1answer
486 views
How to render a tpl of a dataview with an external store?
I am struggling with my view that i load with a store inside my page using a proxy, and its work perfectly. But as soon as I load the same dataview with the same srore but an extern one, it doesn't ...
0
votes
1answer
382 views
dataview webpart expanding the first 3 group headers while keeping the rest collapsed
I have a dataview webpart where items are sorted based on the startdate and grouped by the StartDate. So there will be items for Different Start dates, grouped under the Dates. In sharepoint designer, ...
0
votes
1answer
473 views
Data view scroll issue sencha touch
Hi, I am using sencha touch 1.X and I am having issues on different types of mobile devices with my dataviews.
The problem is that my panel containing my dataview does not scale to the dataview's ...
3
votes
2answers
259 views
why can't the datacontext detect changes to controls binded to a dataview when these changes are done via js?
I created a javascript AdoNetDataContext and created a DataView from it. I was using textboxes on the template for the table columns. AdoNetDataContext can track changes if there were any on the ...
4
votes
1answer
374 views
How can we make the DataView Control respond to javascript events?
If I had an ASP.NET 4.0 DataView control that looked like below, how can I control javaScript events on the client side?
Body tag:
<body xmlns:sys="javascript:Sys" ...