Say you have two lists in Sharepoint, let's call them "house" and "region".
Each house is assigned to a region via a lookup field.
List item permissions are set on regions.
Now I want the users only to only see the houses which belong to the regions they have read access to. I reckon it should be relatively simple I see no easy way of doing this. Am I over looking something.
I have a list with lists of all the certificates being used in my project.
I want to setup a notification (email) if certification expires (or say a week before expiration).
I would like to know solutions with and without code deployment (feature).
Hello friends..
colNames: ['A','B','C','D'],
colModel: [
{ name: 'A', index: 'A', width: 90 },
{ name: 'B', index: 'B', width: 100 },
{ name: 'C', index: 'C', width: 70 },
{ name: 'D', index: 'D', edittype: 'select', width: 100, editoptions: { value: { 1: 'Yes', 2: 'No'}} }
],
My concersn here is.. I am displying A B C D values from db2... for Last Column D I need to put defalut drop down list for all the rows.
Thanks can any body help me out..
thanks
[WebMethod]
public List<DictionaryClass<string,string>> GetDataByModuleDictionary(string ModuleName)
{
return BAL_GeneralService.GetDataByModuleDictionary(ModuleName);
}
here i m getting the following error...
The type DictionaryClass`2[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] is not supported because it implements IDictionary.
I have created a progress bar custom control and would like to embed this into a list which can be sorted and placed on a windows form using .Net 2.0.
What is the best approach for this?
Is it possible to just add it to a ListView as a subitem? Is there a better way to achieve this? I want it to be as lightweight as possible.
I need to list the authors and their emails alternatively. For example:
user1
email_of_user1
user2
email_of_user2
Also, the user1, user2 should be links to pages where posts are filtered by author. I can use wp_list_authors() function but I can't figure out how to do the alternate user, email thing.
I'm new to Android development and I'm currently going through some tutorials. When I setup a new Android Project in Eclipse, and select Windows - Android SDK and AVD Manager, in Virtual Devices, the list of existing Android Virtual Devices is empty. Is it supposed to be?
From the pictures in the tutorial, it's pre-populated. Can I download these AVDs from somewhere, am I missing something here? Also, I'm developing this on my Macbook Pro.
Is there a consolidated list of GUIDs for well known VSS writers available somewhere? At least the Microsoft ones like System State, Exchange, SQL, Sharepoint etc.
How can I efficiently and easily sort a list of tuples without being sensitive to case?
For example this:
[('a', 'c'), ('A', 'b'), ('a', 'a'), ('a', 5)]
Should look like this once sorted:
[('a', 5), ('a', 'a'), ('A', 'b'), ('a', 'c')]
The regular lexicographic sort will put 'A' before 'a' and yield this:
[('A', 'b'), ('a', 5), ('a', 'a'), ('a', 'c')]
How do list the symbols being exported from a .so file. If possible, I'd also like to know their source (e.g. if they are pulled in from a static library).
I'm using gcc 4.0.2, if that makes a difference
hi i need to populate a drop down list when i select a certain value ,
and the options need to be queried from the database ..
can i achieve this from jquery ?
if i can then please i would appreciate any help..
What's the best way to organise my personal TODO list?
and what tools are available for organising team TODO lists?
Should I still be thinking in terms of TODO or are there better ways to manage my time and projects?
See also this question on Organization which is similar
Let's say you're away from your computer and all you've got is a web browser. You'd still like to run a piece of code (e.g. to check an answer on SO). What are your options?
Let's create a list of on-line interpreters of various programming languages. Here are some examples:
Python: http://try-python.mired.org/
Haskell: http://tryhaskell.org/
Scala: http://www.simplyscala.com/
Many languages: http://ideone.com/
Many languages: http://codepad.org/
I'm trying to find the proper command in subversion to see a list of all the files that have changed (don't need to see the changes really) between branch/tag A and branch/tag B, etc.
Hi,
I'm using facebook connect for my iphone app. It is able to authenticate the user and also publish a comment on the user's wall. But I'm not sure how to retrieve the user's friends list. A sample code will be highly appreciated.
Thanks in advance,
-Chandni
I have a class MyClass with a method MyMethod. For every MyClass instance in a list of MyClass instances i want to invoke MyMethod and have them run in a separate thread. I am using .NET 4.0 and the Parallel extensions.
I am using this animation class to create the animation when i shrink and expand the list on some click event
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.Transformation;
import android.widget.LinearLayout.LayoutParams;
public class ExpandAnimation extends Animation{
private View mAnimatedView;
private LayoutParams mViewLayoutParams;
private int mMarginStart, mMarginEnd;
private boolean mIsVisibleAfter = false;
private boolean mWasEndedAlready = false;
public ExpandAnimation(View view, int duration){
setDuration(duration);
mAnimatedView = view;
System.out.println(view.getVisibility());
mViewLayoutParams = (LayoutParams)view.getLayoutParams();
mIsVisibleAfter = (view.getVisibility() == View.VISIBLE);
System.out.println("mIsVisibleAfter:- "+ mIsVisibleAfter);
mMarginStart = mViewLayoutParams.bottomMargin;
System.out.println("mMarginStart:- "+ mMarginStart);
mMarginEnd = (mMarginStart == 0 ?(0 - view.getHeight()):0);
System.out.println("mMarginEnd:- "+mMarginEnd);
view.setVisibility(View.VISIBLE);
}
@Override
protected void applyTransformation(float interpolatedTime, Transformation t){
super.applyTransformation(interpolatedTime, t);
System.out.println("mMarginEnd:- "+interpolatedTime);
if(interpolatedTime<1.0f){
System.out.println("Inside if true");
mViewLayoutParams.bottomMargin = mMarginStart + (int) ((mMarginEnd - mMarginStart)*interpolatedTime);
System.out.println("mViewLayoutParams.bottomMargin:- "+mViewLayoutParams.bottomMargin);
mAnimatedView.requestLayout();
}else if(!mWasEndedAlready){
mViewLayoutParams.bottomMargin = mMarginEnd;
mAnimatedView.requestLayout();
System.out.println("mIsVisibleAfter:- "+mIsVisibleAfter);
if(mIsVisibleAfter){
mAnimatedView.setVisibility(View.GONE);
}
mWasEndedAlready = true;
}
}
}
i am using following lines on some click event in my activity class to create the object of my animation class
View toolbar = (View) findViewById(R.id.toolbar1);
ExpandAnimation expandani = new ExpandAnimation(toolbar,500);
toolbar.startAnimation(expandani);
My probem is that when click event occurs, my list expand and then shrink but it must stop when it grows completely and shrink when i click on up image.
please let me know that how my animation class is working. i have also tried myself by using SOP statements which you can see in my animation class.
Is there any way I can get a list of all the classes in a particular package?
I know getDefinitionByName, getQualifiedClassName, and getQualifiedSuperclassName in flash.utils can find me a class, but I can't find anyway to find all the classes in a package at runtime.
I have a few separate applications which are all launched purely through a main application.
I am wondering if I'd be able to use intents to retrieve a list of all the sub-applications which match some discovery intent.
The main application currently needs to know what Intents to use to START these sub-applications, but is there a way to use intents to see if other Activities on the device match a set of intent-filters?
I was recently brushing up on some fundamentals and found merge sorting a linked list to be a pretty good challenge. If you have a good implementation then show it off here.
hi all this is my json object..everything seems to be fin e but dunnkow why i am seeing this--missing ] after element list
can somebody help.,.here is y json
{"rows": [{"type": "fft_vel","axis": "x","pwrhgh": 7.44475138121547E-02,"pwrlow": 2.35267034990792E-02,"hzlow": 244.827586206897,"hzhgh": 506.896551724138,"dataid": 0,"id": 467,"name": "2008-02-08 14:24:22 - creating first active alarms testing","title": "RMS displacement alert on Pump 11 Sensor 2","description": "An RMS displacement value of 0.04495 inches was recorded on Pump 11 Sensor 2 on 2\u002F8\u002F2008. This is between the RMS displacement alert levels of 0.0442 inches and 0.12 inches.","time_stamp": "2\u002F8\u002F2008 2:24:22 PM","sensor_id": 550003281}]}
I am using list view using "ArrayAdapter" to display number of items while user is looking at results when user click on load button i want results to load and prepends(add in the beginning)
Its common to observe listview developments for webforms but no common in mvc. on the other hand for mvc I´m only finding grid views displaying tabular data.
In your opinion which is the best List view solution for asp.net mvc?.
Edited:
ok, finally I found a possibility. Kazi Manzur wrote a listview using telerik controls. http://weblogs.asp.net/rashid/archive/2010/03/24/creating-rich-view-components-in-asp-net-mvc.aspx
In AucTex, when editing an itemized list
\begin{itemize}
\item My item % note to self
\end{itemize}
When I do C-c C-j after 'self' I get
\begin{itemize}
\item My item % note to self
% \item
\end{itemize}
when I want
\begin{itemize}
\item My item % note to self
\item
\end{itemize}
Is there a setting a can modify to make this work correctly?