Jump to content

GoldSoft

Members
  • Posts

    10
  • Joined

  • Last visited

Posts posted by GoldSoft

  1. i have this code for multi check-box

    <fieldset data-role="collapsible"><legend>Pick one</legend><div data-role="controlgroup" id="ZIBI" align="right" ></div></fieldset>myArray1 = new Array("1","2","3","4","5","6");$("#ZIBI").html('');for (var i = 0; i < myArray1.length; i++) {row = myArray1[i];$("#ZIBI").append('<label for=' + row + '>' + row + '</label>' +'<input type="checkbox" name="favcolor" id=' + row + ' value=' + row + '>');}$('#ZIBI').trigger('create');

    how to check all or uncheck all by pressing any button ?

    thanks

  2. hi
    i have this code for making 3 buttons
      <style>            .ui-grid-b .ui-input-btn {                font-size: 12px;                text-align: center;                padding: 18px;            }        </style>         <fieldset class="ui-grid-b" style="margin:5px;">                    <div class="ui-block-a" >                        <input type="button" value="OpenALL" onclick="OpenALL();">                    </div>                    <div class="ui-block-b" >                        <input type="button" value="OpenHash" onclick="OpenHash();">                    </div>                    <div class="ui-block-c" >                        <input type="button" value="OpenBUG" onclick="OpenBUG();">                    </div>                </fieldset>
    i need to add image to the button (under the text)
    I tried all kinds of ways, but the Result was always ugly and not centered
    I need the picture to be below the text and everything will be centered.
    thanks
  3. My first time on this Excellent forum, hope that someone can help me here.....

    i got from my customer string that I need to get to the server and get an answer.

    this is the string:

    http://XXX.YYY.DDD.WWW:8082/My_ws?Myapp=Myprice&Mydip=123&itemno=123456

    and i get any string as Result.

    i try this in ajax and jQuery - But I did not get any answer and I think something wrong in the code:

    $.ajax({ServiceCallID: 1,url: MyString,type: 'POST',data: '{"itemno": "' + itemno+ '"}',contentType: 'application/json; charset=utf-8',dataType: 'json',success:function (data, textStatus, XMLHttpRequest) {ALL = (data.d).toString();}},error:function (XMLHttpRequest, textStatus, errorThrown) {alert(textStatus);}});

    I really have no idea how I'm supposed to send this link and in return get a string from the server :sorry:

    thanks

  4. My first time on this Excellent forum, hope that someone can help me here.....

    i got from my customer string that I need to get to the server and get an answer.

    this is the string:

    http://XXX.YYY.DDD.WWW:8082/My_ws?Myapp=Myprice&Mydip=123&itemno=123456

    and i get any string as Result.

    i try this in ajax and jQuery - But I did not get any answer and I think something wrong in the code:

    $.ajax({ServiceCallID: 1,url: MyString,type: 'POST',data: '{"itemno": "' + itemno+ '"}',contentType: 'application/json; charset=utf-8',dataType: 'json',success:function (data, textStatus, XMLHttpRequest) {ALL = (data.d).toString();}},error:function (XMLHttpRequest, textStatus, errorThrown) {alert(textStatus);}});

    I really have no idea how I'm supposed to send this link and in return get a string from the server :sorry:

    thanks

  5. My first time on this Excellent forum, hope that someone can help me here.....

    i got from my customer string that I need to get to the server and get an answer.

    this is the string:

    http://XXX.YYY.DDD.WWW:8082/My_ws?Myapp=Myprice&Mydip=123&itemno=123456

    and i get any string as Result.

    i try this in ajax and jQuery - But I did not get any answer and I think something wrong in the code:

    $.ajax({ServiceCallID: 1,url: MyString,type: 'POST',data: '{"itemno": "' + itemno+ '"}',contentType: 'application/json; charset=utf-8',dataType: 'json',success:function (data, textStatus, XMLHttpRequest) {ALL = (data.d).toString();}},error:function (XMLHttpRequest, textStatus, errorThrown) {alert(textStatus);}});

    I really have no idea how I'm supposed to send this link and in return get a string from the server :sorry:

    thanks

×
×
  • Create New...