Search Results

Type: Posts; User: JonG

Page 1 of 3 1 2 3
Search took 0.01 seconds.
  1. Thankyou :)
  2. I have a linkbutton in a panel, and I would like the linkbutton to have a tooltip. Unfortunately when I add the tooltip, it forces the linkbutton down the form.

    I am using Coolite v0.8.2.30060...
  3. Thanks, can you mark this as solved.

    Cheers.
  4. I have a textfield that has the property EnableKeyEvents="true".
    An KeyDown ajaxevent on the textfield is fired to see if the key that was presses was teh Enter key, when the enter key is pressed,...
  5. Thanks geoffrey and Daniil, I used Daniil's java solution as it keeps the look that I am after.

    Thanks,
  6. I have a split button on a panel, and I would like the main part of the split button to act as if the split buttons arrow has been pressed.

    The code segment below simply creates a split button, if...
  7. Sorry for the slow reply, that worked well.

    Thanks :)
  8. Just saw the strangly formatted text that you mentioned.

    I get this IE error when viewing the page...

    Stop running this script?

    A script in this page is causing Internet Explorer to run...
  9. Have copied the code into notepad and back here.
    Page html:


    <%@PageLanguage="VB"AutoEventWireup="false"CodeFile="JDGTest.aspx.vb"Inherits="JDG" %>...
  10. I have a sample page for a problem I am having that contains one checkbox and one button.



    <%@PageLanguage="VB"AutoEventWireup="false"CodeFile="JDGTest.aspx.vb"Inherits="JDG" %>...
  11. I want a FormPanel to be invalid if a user has not ticked a checkbox.

    Is there any way using Coolite 0.8.2 of using a FormPanel's .isValid() function to call a bespoke validator on a CheckBox...
  12. Thanks Daniil,

    I used this in the end:



    var Currency2dpRender = function (value) {
    return value.toFixed(2);

    };
  13. I would like to format a currency field in a gridpanel to 2d.p.

    I have tried using a Renderer on the gridpanel i.e.:
    numberRenderer( String format ) : Function

    But this does not seem to...
  14. Hi vladimir,

    I did not realise that I was using the modified collection, I wanted all of the store which my code fix sorted out for me.

    Please note this as [Solved] or delete the post.
    ...
  15. I think I see the issue....


    grid.store.modified


    Still getting used to javascript.....
  16. Here it is.



    function getValues(grid) {
    var records = grid.store.modified,
    values = [];
    for (i = 0; i < records.length; i++) {
    var dataR = grid.store.prepareRecord(records[i].data,...
  17. Ok, sorted it I think.

    I put this bit of code into the Page_Load event. Strange how it does not like the <ExtraParams> html.... I thought the datasource.databind enabled the client side to see...
  18. bump
  19. I have a very simple form that is failing.

    I have populated a datagrid with some values, and I have a button, that has a OnClick AjaxEvent that I am trying to pass the contents of the grid to...
  20. As always, it worked.

    [CLOSED]

    Thanks :)
  21. I have a gridpanel, set in a borderlayout on a form as below. The scrollbar does not appear on my gridpanel.

    I load enough items into the gridpanel (StoreReports) during the Page_Load event to...
  22. Works!

    There is now no need for my random extra hidden control AND my barcode scanning works!

    Mark this as Solved or Not a bug(?)

    Thanks,
  23. Here is thew project you requested.

    It contains 4 web forms.

    2 pages with the extra control commented out.
    NoExtraControl.aspx - with your 'Before' event
    NoExtraControl2.aspx - with the...
  24. Embarassingly, I am not using v0.8.1 of Cooloite, it is v0.8.2.30060 . Hopefully this will make this easier to track down.

    I tried the before handler and it threw up an error.

    Line: 193...
  25. The KeyDown and KeyPress events (tried them both) are server-side events called from an AjaxEvent of my numberfield control.

    Both events have the same behaviour. Both events that fire are...
Results 1 to 25 of 57
Page 1 of 3 1 2 3