calendar popup entry doesn't work Vtiger - vtiger

I had installed vtiger 5.4.0 in my server windows. When I trying to open the popup calendar doing click on calendar icon, this doesn't open. What could be happening?
Anybody, Could be help me please?
Using Inspect Element of Chromium I get this error when I trying to topen the calendar
Uncaught TypeError: Cannot read property 'indexOf' of undefined calendar.js:1544
In other words the error is here
if (weekend.indexOf(realday.toString()) != -1) {

Related

Unable to install Visual Studio 2017 community edition

Upon installation I get a message box stating: "Setup Operation Failed". When I view the log it contains:
[2034:000c][2017-03-07T15:50:03] Error 0x80004003:
at Microsoft.VisualStudio.Setup.Cache.InstanceRepository.GetInstance()
at Microsoft.VisualStudio.Setup.Cache.CacheRepository.d__27.MoveNext()
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable1 source, Func2 predicate)
at Microsoft.VisualStudio.Setup.Engine.VerifyInstallationPath(IServiceProvider services, String installationPath, IInstance instance, IQuery query)
at Microsoft.VisualStudio.Setup.Engine.Install(Product product, String destination, CancellationToken token)Object reference not set to an instance of an object.
Please help.
There is not enough information to go on. Please run http://aka.ms/vscollect.exe then attach %TEMP%\vslogs.zip to a new issue you should file using the Feedback tool. In the Visual Studio Installer, click the feedback button in the upper-right corner.

in iOS native app, open unity3D on button click

I'm trying to open Unity3D on click of UIButton using storyboard by following this tutorial.
I'm getting use of undeclared identifier AppDelegate.h in UnityAppController file and if remain previous code which is below.
inline UnityAppController* GetAppController(){
return (UnityAppController*)[UIApplication sharedApplication].delegate;
}
Getting error http://www.screencast.com/t/iSUrpt639XD. Similar QA does not helped me.

Crash If The Chinese Is Included In Feature File

The feature file is as below which is included Chinese:
Feature: Splash feature
Scenario: As a user I can know the introduction of the app
Given I wait for the view with id "introduce" to appear
When I drag from 0:600 to 700:600 moving with 5 steps
And I swipe right
And I swipe right
Then I see "开始使用"
When execute command calabash-android run app-dev-debug.apk. It occurs crash.
What's the problem and how to solve it?
I have tried chcp 65001 and 936. That is not OK.
My env is as below:
Win7 GBK version
ruby 2.2.4p230
calabash-android 0.7.3
cucumber 2.3.3

Connection from Toad 11 to TFS 2010

currently I try to connect to our TFS2010 server with Toad Team Coding.
I've tried to follow this documentation, but it's for Toad 10.6 and some of the windows look different. Still I was able to connect to our collection and see all our Team Projects we have.
The problems start, when I try to export something to TFS.
Team Coding Code Collections -> Create new revision...
There I select e.g. all Packages and click "OK", then I get the Export Options -> OK
Then I just get a bunch of errors:
"Unable to add revision from VCS repository. Error uploading file: C:\temp...."
The progess window in the background says: "Package xyz has been added to the VCS."
Now I have a bunch of PKS/PKB files in my folder and Visual Studio shows me, that I have new files with Pending Change "add".
Team Coding Viewer shows me all the files with status "Available", checkin is grayed out, checkout gives the same error as above and the info window at the bottom shows:
15:29:46 Error: Cannot create file
"C:\Users\abc~1\AppData\Local\Temp\$111.11.1.11:1521\xxx.50510.PKB".
Die Syntax für den Dateinamen, Verzeichnisnamen oder die
Datenträgerbezeichnung ist falsch
(Translation for the last part: Syntax of filename, foldername or diskname is wrong).
At this point it doesn't make sense to go on. Toad will show the files now as checked out, but in TFS they are still with the "add" change. Toad acts like the checkin/checkout was successful (window at the bottom) and shows the error for every file.
Any idea? Any new tutorial to set up Toad 11 with TFS 2010?

NS_ERROR_XPC_GS_RETURNED_FAILURE error code

I'm developing extension for Firefox which calls XPCOM component writen in C++ and I get this error:
[Exception... "Component returned failure code: 0x80570016
(NS_ERROR_XPC_GS_RETURNED_FAILURE) [nsIJSCID.getService]" nsresult: "0x80570016
(NS_ERROR_XPC_GS_RETURNED_FAILURE)" location: "JS frame ::
chrome://testtest/content/mytest.js :: loadTestPage :: line 128" data: no]
When I try to execute this code from java script:
cid = '#myCompany.com/MyComponent;1';
obj = Components.classes[cid].getService(Components.interfaces.IMyComponent);
Does anybody know what this error code means?
This error occures only on few machines running Vista (both x86 and x64) running FF 3.5.2 (32-bits official build, even after FF is reinstalled and new profiles are created), on other platforms it is working. XPCOM component is compiled with Visual C++ 2008 (sp1).
I tried to delete compreg.dat and xpti.dat and it doesn't work, I also tried to create new profile and then install extension again but still I get the same error.
I know for a fact that Firefox successfully loads my XPCOM component and that component is working, because I can access and use it from another component written in javascript.
Evaluating from error console also works.
Expression:
Components.classes['#myCompany.com/MyComponent;1'].getService(
Components.interfaces.IMyComponent);
returns:
[xpconnect wrapped IMyComponent]
Thanks!
It's also possible that you're trying to call .getService while you're still in the middle of component registration. You should not try to create any external components during registration, because they may not be registered or completely available yet.
The error means that your component threw during the getService call.