C#,vb.net,MVC,Jquery,javascript,jscript,vbscript,html,vb,sharepoint,COM,WPF,WCF,Wwf,Asp,Asp.net,questions & answers,

Latest in Sports

Showing posts with label IEx. Show all posts
Showing posts with label IEx. Show all posts

Friday, September 5, 2014

My application was developed using MVC.I have view which internally has two partial views .In the edit mode, I'm reloading one the 1st partial view .But I'm facing issues kendo dropdown controls .Data is getting loaded but scrollbar in dropdown is not visible because of which data is not shown properly .The same is working fine in google chrome.

 
I have tried changing styles of those div's in  which I have my  kendo dropdown's are there but it didnt work.
Below is the code for reference:
<div class="k-animation-container km-popup" style="width: 250px; height: 206px; margin- padding- padding-right: 10px; padding-bottom: 15px; display: none; "><div class="k-list-container k-popup k-group k-reset" id="MaintenanceType-list" data-role="popup" style="height: 200px; display: none; font-family: 'Segoe UI', Verdana, Tahoma, Arial; font-size: 11px; font-style: normal; font-weight: normal; line-height: normal; width: 244px; -webkit-transform: translateY(-206px);"><ul unselectable="on" class="k-list k-reset" tabindex="-1" role="listbox" aria-hidden="true" id="MaintenanceType_listbox" aria-live="off" style=""><li tabindex="-1" role="option" unselectable="on" class="k-item"></li><li tabindex="-1" role="option" unselectable="on" class="k-item">AUX - Accessories belonging to EA group</li><li tabindex="-1" role="option" unselectable="on" class="k-item">ARL - Artificial Lift</li>
 
 
2nd Issue:I have textbox which is in readonly mode in IE but the read only property is false where as it is allowing to enter characters insame text box in chrome.
 
 
Can please help me to resolve this issues.

Tuesday, August 21, 2012

We have a webpart in SharePoint that uses the Ajaxtoolkit.js to provide the intellisense functionality. IE displays a warning on clicking any option in the JS intellisens dropdown. We need to suppress or overcome this warning.  Please suggest a way to suppress/overcome this? Thanks in advance!

Scripts

<head>
    <script type="text/javascript">
        $(function () {
            $("#<%= m_searchKeyWordTextBox.ClientID %>").keypress(function (event) {
                if (event.which == 13) {
                    // call basic search onlick
                    $("#<%= btnBasicSearch.ClientID %>").click();
                }
            });
        });
    </script>
</head>

  

How to suppress JQuery warning on IE status bar


Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8; .NET4.0C; .NET4.0E)
Timestamp: Tue, 21 Aug 2012 13:32:53 UTC


Message: Object expected
Line: 2
Char: 20597
Code: 0



Error IE on developer tools



Excerpt of Portion where error was pointed to in IE:

if(this._enterKeyDownScript)eval(this._enterKeyDownScript)}},_onListMouseOver:function(b){ULSxaw:;var a=this._getCompletionListItem(b.target);


 Thanks
Ganesh

Friday, July 13, 2012

You just cross check below mentioned points because some times it may be a cause using these issues?
1) Make sure that whether you given proper relative path or not?
2) As you mentioned in your mail saying that you registered control in aspx page so you just cross check whether you are calling the JS page or JS functions through server side code or client side.
3) Check your browser settings whether you enabled JavaScript related options or not in IE 9 browser?
Still if you are facing the issue you just share your code with me so that I can look into your issue