Search:

Type: Posts; User: jlbantang

Page 1 of 13 1 2 3 4

Search: Search took 1.03 seconds.

  1. Replies
    1
    Views
    1,430

    VS 2010 missing sqlparameter add method

    Hi guys, Im trying to follow this sample of inserting data through gridview rowcommand. But somehow Im missing the sqlparameter add method whilst the namespace was already added.





    ...
  2. Replies
    0
    Views
    875

    VS 2010 Error reading string to javascript

    Hi guys, I have a form with multiline textbox it is submitted to database and everything works perfectly at this state.
    The data are bind through gridview rowdatabound to be read back to javascript...
  3. VS 2005 Passing Session object to another page return null error

    Hi, Im trying to pass a Crystal Report Document type object to another page through Session but it sending a null error message. The goal is to generate the report in PDF format which is already...
  4. Replies
    2
    Views
    10,023

    Re: installing JQuery/JQuery UI

    Library conflict may occur, why not try using it one at a time and see the result. My 2 cents.
  5. Replies
    1
    Views
    7,428

    Re: jq datetime picker theme and formatting

    In case someone need the same:



    1] calendar buttons are available under images folder and ensure it is located in the same folder location with jquery ui css.
    2]...
  6. Replies
    1
    Views
    7,428

    jq datetime picker theme and formatting

    Hi guys, a minor issue with the control. I used the same jquery library and css file on my test but not getting to replicate the design shown in jq site demos.

    1] How to add previous and next...
  7. Replies
    10
    Views
    1,812

    Re: Using WHERE CASE in SP

    Hi szlamany, appreciate the comment. Does it mean if I have compound criteria I need to write it 4 (four) times?



    if @criteria1= x
    Begin
    If @criteria2=x1
    Begin
    End
    else
  8. Replies
    3
    Views
    4,595

    Re: javascript window.open not working in IE

    Thanks works like a charm. Since all webpage are declared is there also a way to close all popup window when user logout from main page.

    Something like these


    function closeall_hwnd(){

    if...
  9. Replies
    3
    Views
    4,595

    javascript window.open not working in IE

    Hi, Im using a custom function to open window most of the time it works in IE,FF and CHROME but when I pass the value



    onclick="popupwindow01('supplier.aspx?src=rpt&tar=costcentre','Page...
  10. Replies
    10
    Views
    1,812

    Re: Using WHERE CASE in SP

    Hi abhijit, that was an option I consider but I found something interesting and its looks very promising. It does work when I test but not sure with the performance though compare to dynamic sql.

    ...
  11. Replies
    10
    Views
    1,812

    Using WHERE CASE in SP

    Hi, Im using SP with 2 parameters named @criteria and @value. The @criteria serve as column flag in which column to perform the search eg Supplier and Invoice No and the @value which is the query...
  12. Replies
    1
    Views
    675

    [SQL2005] Variable Table Insert Select

    Hi, is it possible to use columns using physical table and variable table under where statement?


    insert into @tb1( local_off_totmins)
    select sum(mint_usage)
    from tblcalllogs a
    where...
  13. Replies
    1
    Views
    409

    [sql2005] order by defined value

    hi guys, how would you sort columns according to defined values. suppose

    action
    -----------
    MSC
    GP
    DL
    IDA
  14. Replies
    3
    Views
    1,315

    VS 2005 Re: crystal report toolbar error

    i did not see anything special from the image property as you said but i check the html header and directly it shows some css file to include in the project dir.
    so obvious it was remove from the...
  15. Replies
    3
    Views
    1,315

    VS 2005 [RESOLVED] crystal report toolbar error

    hi guys, im having this problem in the production server regarding crystal report toolbar.

    http://i52.tinypic.com/11r6cma.gif

    all images in production server were crossed out and its functions...
  16. VS 2005 Re: gridview with bound sqldatasource

    thanks all for the pointers. it work well in rowdatabound though i prefer doing that in SPROC itself.


    @saparator i used '*' since i know i need to return all rows from SPROC. does it make any...
  17. VS 2005 Re: gridview with bound sqldatasource

    hi gary, yes the i manage to make the code works. the data result when displayed to grid is also identical to the screenshot post #6. but im having issue how to make running balance for each item....
  18. VS 2005 Re: gridview with bound sqldatasource

    i agree but rather i want to keep the code simple i would consider doing that next time :D
    anyway the whole codes work as of now and i need to add running balance for each item at the stored...
  19. VS 2005 Re: gridview with bound sqldatasource

    @MMock the source is bind at markup

    @sapator yes the sp works and it return rows but im not able to hook it on gridview
    i use the requisition_detailsqldatasource in a user bindgrid procedure. ...
  20. VS 2005 [RESOLVED] gridview with bound sqldatasource

    hi, did i miss something on the code? im using gridview bound to sqldatasource, the data source use a valid stored procedure with temporary tables return through tsql select command but im not...
  21. Replies
    14
    Views
    1,582

    VS 2005 Re: call insert through gridview

    hi gary,

    got it with this code
    thetextbox=document.getElementById('GridView3_ctl02_rcvdqty_textbox').value;
    alert(thetextbox);

    im doing the other stuff. i'll be back quickly. thanks.
  22. Replies
    14
    Views
    1,582

    VS 2005 Re: call insert through gridview

    great now i need to perform client validation. 3 rules:

    1. rcvd qty is a required field. can be done through required field validation control
    2. rcvd qty must be numeric-float in format. can be...
  23. Replies
    14
    Views
    1,582

    VS 2005 Re: call insert through gridview

    hey gary, i manage to find a time saver solution from different threads. please let me know if their is a need to revise the code.


    If e.CommandName = "insert" Then

    'get fired button from...
  24. Replies
    14
    Views
    1,582

    VS 2005 Re: call insert through gridview

    hi gary, yes its says nothing.

    so this code did not work i assume.

    Dim rcvdqty As TextBox = TryCast(GridView2.Controls(0).Controls(0).FindControl("rcvdqty_textbox"), TextBox)

    ...still...
  25. Replies
    14
    Views
    1,582

    VS 2005 Re: call insert through gridview

    twas a kick ass sample :D. the insert button works on fly but im getting error when using the value pass from gridview textbox.




    <asp:TemplateField HeaderText="rcvd qty">
    <ItemTemplate>...
  26. Replies
    14
    Views
    1,582

    VS 2005 Re: call insert through gridview

    great. thanks for the info...let me take this one at a time.
  27. Replies
    14
    Views
    1,582

    VS 2005 Re: call insert through gridview

    @gep13 thanks it seems what im looking.

    also i want to add validation on addbutton_click through javascript. i need to meet the conditions

    1] Rcvd_Bal <=Bal of the active row
    2] Rcvd_Rate <=PO...
  28. Replies
    14
    Views
    1,582

    VS 2005 call insert through gridview

    wits end im hoping to find solution from you guys.

    i have a gridview with a few columns, 2 textbox templatefield,1 button template and bound to sqldatasource .

    the button template will call...
  29. Replies
    1
    Views
    783

    VS 2005 Re: [RESOLVED] gridview sorting

    fix it:

    because of this code in tsql : convert(varchar(20),[dated],106) as dated and the date was already converted to string and so the sorting wont work.
  30. Replies
    1
    Views
    783

    VS 2005 [RESOLVED] gridview sorting

    hi I have a Gridview attached to sqldatasource that I want to be able to sort using specific bound column named Dated. It seems the ORDER BY in sqldatasource select command do not work at this time....
  31. Replies
    2
    Views
    1,477

    VS 2005 crystal report load failed error

    Hi, after head dropping research it seems none of the solution work for me regarding the above error. It works in development server but I'm having these hiccup in the production.

    I'm using:...
  32. Replies
    3
    Views
    1,849

    align control using ul-li tags

    hi team,

    I was thinking if there is a way to create a tabular layout using UL - LI. though this can be done using simple table the ul give a neat and easy to read markup. the &nbsp non-breaking...
  33. Replies
    5
    Views
    1,747

    VS 2005 Re: image and fileupload control

    Hi Gary,

    I just rewrite the javascript function and add document.write() to get a print of selected path.

    While IE gives a full qualified path after selecting the image what happen in Firefox...
  34. Replies
    5
    Views
    1,747

    VS 2005 Re: image and fileupload control

    Hey,

    Strange but I'm not getting javascript error from firefox. But it replace the default image by blank canvas after file selection.
  35. VS 2005 Re: navigate pages through datagrid item

    hey, thanks for the web ref. it was a good start.

    eventually i end up with the simplest code, something like these. only that i hook up row data for building querystring. :D



    If...
  36. Replies
    5
    Views
    1,747

    VS 2005 image and fileupload control

    hi guys, i have a combined control to display image using fileupload and image controls. the code below works perfectly for IE browser but for some reason it wont give me the desired result using...
  37. VS 2005 Re: navigate pages through datagrid item

    hi gary,

    Not really, my apology if i get you lost. Take this sample



    DirectCast(e.Row.FindControl("showbutton"), Button).Attributes.Add("onclick", "window.open('mrecipe.aspx?id=" &...
  38. VS 2005 [RESOLVED] navigate pages through datagrid item

    *control naming error its Gridview not datagrid

    Hi, I have search page using gridivew with boundfield on it. And I want to do something extra by making the full row clickable instead of having...
  39. Re: [vs2005] remove extra v-space inside div and fix display

    hi coothead, neat code. learning from it.

    most appreciated.
  40. [vs2005] remove extra v-space inside div and fix display

    hi team, could someone please tell me how to remove extra list item vertical space inside div.

    are there any hacks required to display it properly in firefox?



    <div id="panel_wrapper"...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width