Hi,
currently I am trying to do the following: In a Sharepoint List view I want to show some text fields where the user can type some characters and the list will be filtered immediately by this. This should be done with Javascript.
My first try was getting the values via a CAML-query and writing them into the html-table one by one. That worked in a way, but I realized that some of the objects are given as an object, so every special column has to be handled individually. Also all Hyperlinks and sortings were lost, which probably could be fixed with some work.
Because of this disadvantages I tried to use the object model. The idea was to put the query directly into the View with set_viewQuery and update the view. I managed to do so, but not only the current users view was manipulated, the query was also stored in the view on the server, which is not what I want. So I tried to use the views renderAsHtml()-function after setting the query and insert the result after the text fields, but nothing happens...
I'm not really shure why this didn't work, but I have to admit, I'm currently only starting SharePoint-programming. Maybe you can give me a hint what is wrong here and how to do it correctly.
Thanks in advance
Nick