Upgrade from 0.82 to 1.7

  1. #1

    Upgrade from 0.82 to 1.7

    Hi

    I've finally getting some time for upgrading an application that we have here. Have managed to get it going but having some difficuilty with a Remote ComboBox that I have setup.

    I havent changed the code for this but I've noticed when it is posting to my .asmx that the query string is now missing:

    Note the querystring in Firebug: (Prev 0.82)



    Now the query string is missing but it is being passed as JSON which I can't get server side?



    The combobox is setup serverside with certain paramaters

    this.DisplayField = "Text";
                this.ValueField = "Value";
                this.TypeAhead = false;
                this.LoadingText = "Searching";
                this.SelectOnFocus = true;
                this.PageSize = 0;
                this.HideTrigger = true;
                this.MinChars = 1;
                this.Mode = DataLoadMode.Remote;
                this.QueryDelay = 10;
                
                proxy = new HttpProxy();
                proxy.Method = HttpMethod.POST;
                proxy.Url = Url;
                proxy.Json = true;
                
                reader = new JsonReader();
                reader.Root = "d";
                reader.Fields.Add(new RecordField("Text"));
                reader.Fields.Add(new RecordField("Value"));
    
                store = new Store();
                store.ID = this.ID + "_store";
                store.Proxy.Add(proxy);
                store.Reader.Add(reader);
                
    
                this.StoreID = this.store.ClientID;
                this.Controls.Add(store);
    Any help will be appreciated?

    Thanks
    Attached Thumbnails Click image for larger version. 

Name:	Untitled-1.jpg 
Views:	32 
Size:	49.4 KB 
ID:	15371   Click image for larger version. 

Name:	Untitled-2.jpg 
Views:	28 
Size:	64.2 KB 
ID:	15381  
  2. #2
    Hi

    It looks like there was a change from 0.82 to 1.x in the HttpProxy in that the params passed were no longer appended to the url of the proxy? Is there a setting or any other way of getting back into the querystring??

    Any help please?

Similar Threads

  1. [CLOSED] Upgrade from 2.1.1 to 2.5.2
    By bogc in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 17, 2014, 5:40 AM
  2. [CLOSED] How to Upgrade from 1.x to 2.x
    By hidaextnet in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 22, 2013, 3:05 PM
  3. Replies: 7
    Last Post: Apr 29, 2013, 7:06 AM
  4. Upgrade fee to v2
    By Richardt in forum Licensing
    Replies: 1
    Last Post: Jul 15, 2011, 3:37 PM
  5. 2.0 upgrade fee
    By T3rryChan in forum Licensing
    Replies: 1
    Last Post: Jun 29, 2011, 3:40 PM

Posting Permissions