Hi Experts,
I am importing data from Excel into Sharepoint list using "Datasheet view".
When i paste the data, I get error message "Cell is read only." for readonly fields.
Is there a way to import data into readonly fields.
Thanks
...
i got a godgiven list of xyz (the code says int, just an example) glued into a QList (to big to move anywhere). How can I create a Model View for that? I allready read the Qt doc which tells me, I have to reimplement data, index, parent, rowCount, columnCount functions. But the preprocessor/compiler cries for more reimplemented functions...
I'd like to replicate the search bar in Contacts app > Favorites > Search (sans icon). Could someone give me a few tips?
A linear layout maybe with some top, left and bottom padding, width is fill_parent, and a weight of 1? With a button next to it with some right padding? How do I make the button look like that? Is there a parameter I ...
Hi,
I have an application that has a window similar to the one bellow .
The requirement here is that when the user clicks the Save button everything has to get saved. The "Save" and "Reset" buttons are "common" to all tabs. Hence, when the "Personal Information" tab is selected and "Save" is clicked the program should also save chang...
How can I open a context menu for a view without registering it using registerForContextMenu()?
My activity overrides onTouchEvent to detect motion, and if I use registerForContextMenu() it stops working. I'm detecting a long press, so I'd like to forward that request to a method that would build the menu for me, but don't know if it ca...
How can I know which childview is shown on the current device screen, in a scrollview?
I want to make an infinite Ruler App, so I need to dynamically add and remove view when the view is flipping, but how and where can I find out which childview is shown on the current device screen, so I can add or remove the correct view when I get th...
Trying to write a game such that most of the screen gets filled with my GameView (custom view, derived from View)
I then want to have an area at the bottom of the screen for messages etc. In the following I'm just trying to put a button there to illustrate the issue.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:...
I'd like to complete redo the annoucements, and i'm having issues getting the CAML to do what i want. I want to grab each Field( i assume this is what i want to grab) and style them.
Say i want the Title to be in bold red and the body in green
How would I accomplish this using CAML? I am customizing the View Style, adding my own.
...
Hi,
I've been trying to find one or all of the right filters. Does anyone have them? Down at the bottom you can see the logging output of the intents. Perhaps they aren't public?
Have tried the following in my code to no avail...
<receiver android:name=".ContactsBroadcastReceiver" android:label="@string/broadcast_receiver_name" a...
Hey everyone,
I am trying to validate a form submission in Kohana 3. I have the form::open point to my action_create in my controller which successfully validates the data posted to it from the form in my view. If the data passes validation, a new item is created as intended, and the user is redirected to the item that was just creat...
I have an application made up of an ExpandableList, whose children are data collection widgets like CheckBoxes and EditText. Once data is entered, it is immediately lost when the list is scrolled.
What may be the problem or solution?
Thanks.
...
I created an object that extends android.view.View, overriding draw() and have it displaying on the screen. To put you in the picture, it is a display of digits to represent a game score. It's displaying correctly horizontally, however, it is taking up the full height of the screen - pushing all other elements off the screen.
I've put l...
I need help figuring out how to change out the view in my application. I have a wonderfully working view that I have finished and now I'd like to be able to switch the view to a brand new, blank white screen to display.
I have these files:
HelloAppDelegate.h,
HelloAppDelegate.m,
HelloViewController.h, and
HelloViewController.m
Then, I ...
Hi,
I have a DataGrid View which is bound to the Binding Source. All the Cells are Read Only. The Problem that i have is when i click the cell the data is hidden, when it goes to other cell that data comes up. I am trying to figure it out what going on. Can some one help me out.
...
Hi guys,
Im changing the background color of each View row each time i click on it!
But, when you keep clicking, it doesnt change the last View row back to its default color. How can i achieve this kind of behavior?
Thanks
...
How could i inflate my custom view using the main.xml file? I thought it carried the format of
<com.blah.project.MainClass.innerClass />
but I cant seem to get the fully qualified name of my inner class right. My customView is inside of my Main.java file, anyone know how I could properly reference it? Thank you.
...
I have a TextView inside the same RelativeLayout as a chunk of ImageView derived custom classes. I'd like to be able to write to the TextView from inside these other Views. How do I do this since I am unable to use findViewById due to it not being a child?
...
I have complex models and would like to just 'dump' some querysets to see exactly what they contain from view code.
I tried the generic list_detail (from urls.py) - but it appears to require writing a template.
Is there a way to dump data from a view (like how json is saved) that will work with anything passed?
...
I need to calculate how many items fit on the screen. I tried do it in this way
private int callculateItemsOnPage(View layout, View item) {
if (layout == null || item == null)
return -1;
int itHeight = item.getHeight();
int layHeight = layout.getHeight();
return layHeight / itHeight;
}
But itHeight, layHeight permanently 0...
Is is possible for an Azure application to offer a service to end-users for carrying out long-running computation tasks that are going to be distributed over multiple Workers (with persistent storage)?
And would it be possible to provide this through a web-service that is accessed by a desktop .Net application (the View) or do you alway...