User Profile

Collapse

Profile Sidebar

Collapse
jay123
jay123
Last Activity: Dec 14 '17, 03:17 PM
Joined: Sep 2 '08
Location: London
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jay123
    replied to Attaching Typeahead row with anchor tag
    This can be achieved by using updater attribute in Typeahead as code in updater gets called on click of row in Typeahead dropdown.

    Code:
    updater: function (item) {            
           // do whatever you want to do here
        }
    See more | Go to post

    Leave a comment:


  • jay123
    started a topic Attaching Typeahead row with anchor tag

    Attaching Typeahead row with anchor tag

    I am using ajax call to populate data in my dropdown using Typeahead, now the HTML Typeahead creates for every row in dropdown look like

    Code:
    <li class="active" data-value="xx"> <a href="#"> my Text </a> </li>
    My requiremnt is to have some value in anchor tag where when user clicks on dropdown text, it takes user to new page.

    Can anyone point me in right direction?...
    See more | Go to post

  • Hi

    I have fixed the issue, please check https://github.com/moxiecode/plupload/issues/758
    See more | Go to post

    Leave a comment:


  • No one replies for days and days at plupload, as the link you provided will confirm. So i tried trying my luck here.

    Anyways, thanks for replying
    See more | Go to post

    Leave a comment:


  • jay123
    started a topic Plupload jquery library not working in IE10

    Plupload jquery library not working in IE10

    I have a website where user's can upload their images. I am struck at IE10 not bringing file upload folder. I am using Plupload jQuery files with latest version(v1.5.6) . It works very well with Firefox, Opera, Chrome and IE9 but not IE10.

    Clicking on 'Upload' button does nothing.

    Can someone please guide me in right direction.

    Thanks
    See more | Go to post
    Last edited by Dormilich; Apr 4 '13, 11:26 AM. Reason: orthography

  • How can i check if user has selected any option from dropdown

    Hello,

    As title states, i have a DropdDown and i need to stop user submitting form if he hasn't selected anything in Dropdown

    i am using (for testing purpose)
    Code:
    alert($("#DivId option:selected").val().length);
    and it return 0 if nothing selected and length of selected option (if selected), but when i use same command in If like

    Code:
     if ($("#DivId option:selected").val().length
    ...
    See more | Go to post

  • Get this when i try to connect

    Metadata contains a reference that cannot be resolved: 'http://servername/ReportServer/ReportExecution 2005.asmx'.
    The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM '.
    The remote server returned an error: (401) Unauthorized.
    If the service is defined in the current solution, try building...
    See more | Go to post

    Leave a comment:


  • VS2010 keeps asking Discovery Credentials while adding Web-Services

    Hi,

    We have 1 reporting server where we have all the reports, now i need to show some reports in my Visual Studio project and for that i am trying to add Reporting server web services which will send me back the report and i'll display that report in pdf in my browser.

    Problem i am facing is, when i try to add web-service through Visual Studio. It keeps asking me 'Discovery Credentials', i have tried entering these 20...
    See more | Go to post

  • jay123
    started a topic carousel not starting itself on page load

    carousel not starting itself on page load

    Hello,

    Pretty much as in title, I have carousel with some picture but when i load my page. cerousel doesnt seems to start itself but once i click next/previous button. it starts working.

    Code:
    <div id="myCarousel" class="carousel">
    <div class="carousel-inner">
      <div class="item"><img src="129.jpg"/></div>
      <div
    ...
    See more | Go to post

  • The code is in Main Div as
    Code:
     <div id="Div1" runat="server" style="margin-top:10px; margin-bottom:10px;">
            <asp:DataGrid runat="server" ID="Test" OnSortCommand="SortGrid" AllowSorting="true" width="100%" BorderColor="White"
    					  backcolor="White" ItemStyle-CssClass="row1" BorderWidth="0px" CellSpacing="1"
    ...
    See more | Go to post

    Leave a comment:


  • Pagination not appearing on right hand side in DataGrid

    Hello All,
    I am trying to get some data in DataGrid from XML files. I am reading that XML data and putting that data in DataView and giving that DataView as DataSource to DataGrid.

    As i have a schema for my XML, i dont even give HeaderName as system automatically takes HeaderText as whatever is in XML Tags.

    Now my problem is Pagination alignment, i have pagination on my DataGrid but even setting
    ...
    See more | Go to post
    Last edited by Niheel; Mar 1 '11, 10:35 AM.

  • Silly me

    this worked (never expected though)
    Code:
    Label.Text = "a" & "<br />" & "b" & "<br />" & "c"
    See more | Go to post

    Leave a comment:


  • How to add LineBreak in Text(String) in VB.Net

    Hello,
    I have a string which i need to display in 3 lines.
    Code:
    i.e. Label.Text = "a" & vbCrLf & "b" & vbCrLf & "c"
    I want above text to appear in 3 lines, but no matter what i do, it appears in single line. I cant have three labels as whole situation is very complex then i have given above.

    I have tried 'ControlChars.N ewLine', 'vbCr', 'vbCrLf' but nothing seems...
    See more | Go to post

  • jay123
    replied to ToolTip not working in IE6
    Changed <a> to <p>, sorted
    See more | Go to post

    Leave a comment:


  • jay123
    replied to ToolTip not working in IE6
    Adding background-color to 'a.info span' class did the trick, God knows why :)

    solution
    Code:
    a.info:hover
    {
        z-index:25;
        [B]background-color:color-you-want;[/B]
    }
    But still looking for solution for disabling anchor tag, so user remains at same place when he clicks on <a> tag.
    See more | Go to post

    Leave a comment:


  • jay123
    started a topic ToolTip not working in IE6

    ToolTip not working in IE6

    Hi,
    I have been trying to make my tooltip work for IE6 but to no avail.

    code is
    Code:
    <a class="info" href="#">
    <img src="http://bytes.com/submit/Images/urgentblank.gif" class="icon"/>
    <span>Data i need to show over hovered over link.</span>
    </a>
    and CSS is
    Code:
    .icon
    {
    	background: url(../abc.gif);
    ...
    See more | Go to post

  • What worked was adding the same entry in assemblyinfo class in that project. i have worked on globalization before what never added anything manually other than in resource file but in this case, whatever i enter in resource file has to be manually entered in assemblyinfo class of that particular project.

    Anyway everyone for looking at this.

    Cheers
    jay
    See more | Go to post

    Leave a comment:


  • Just figured out that Page.Header is Coming as 'Nothing'

    Any Suggestion why this may be?

    Regards
    Jay
    See more | Go to post

    Leave a comment:


  • Why is the resource(.resx) file not showing the Image?

    Hello,
    I have 1 resource file where one of the variable points to images path.

    Now when i try to run my solution. That image isnt appearing rather an empty space is coming up same as a size of an image.

    As we already has another image working that way, so when i replace my new image value to old image value, that work.

    I have checked the properties of new image i have added and Build action...
    See more | Go to post

  • jay123
    replied to onmouseover event for dynamic controls
    in .NET
    Me answering me :)
    As Control is dynamic, we cant add onmouseover attributes rather any attributes if the controls isnt visible.

    work around would be on Daragrid_ItemBo und, try finding that control and if it exist add an attributes. Ex
    Code:
    Dim EdButton As ImageButton = DirectCast(e.Item.FindControl("Button1"), ImageButton)
                If Not (EdButton Is Nothing) Then
                    EdButton.Attributes.Add("onmouseover",
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...